%10-17  returnʹ÷

       function d = det(A)
       if isempty(A)
          d = 1;
          return
       else
         ...
       end
